home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 2410 / 2410.xpi / chrome / content / foxmarks-clobber.xul < prev    next >
Extensible Markup Language  |  2010-01-28  |  2KB  |  54 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.  
  5.  Copyright 2005-2007 Foxmarks Inc.
  6.  
  7.  foxmarks-clobber.xul: implements the dialog that appears when
  8.  foxmarks detects that the users bookmarks have been clobbered.
  9.  
  10. -->
  11.  
  12. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  13.  
  14. <!DOCTYPE dialog SYSTEM "chrome://foxmarks/locale/foxmarks.dtd">
  15.  
  16. <dialog id="foxmarks-clobber" title="&dialog.title;"
  17.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  18.     windowtype="foxmarks:progress"
  19.     buttons="accept,cancel,extra1"
  20.     defaultButton="cancel"
  21.     buttonlabelaccept="&clobber.accept;"
  22.     buttonlabelextra1="&clobber.moreinfo;"
  23.     onload="return onClobberLoad();"
  24.     ondialogaccept="return onClobberOK();"
  25.     ondialogcancel="return onClobberCancel();"
  26.     ondialogextra1="return onClobberHelp('&clobber.helpurl;')"
  27.     moveToAlertPosition="true">
  28.  
  29.     <script src="foxmarks-clobber.js" />
  30.     <script src="foxmarks-log.js" />
  31.  
  32.     <vbox style="width: 26em; padding: 1em 2.4em 1.5em 1em;">
  33.         <description 
  34.             style="margin-bottom: 1em; 
  35.             font-weight: bold; 
  36.             text-transform: uppercase;">
  37.         &clobber.desc1;
  38.         </description>
  39.         <description style="margin-bottom: 1em">&clobber.desc2;</description>
  40.         <description style="margin-bottom: 1em">&clobber.desc3;</description>
  41.         <vbox style="padding-bottom: 6px">
  42.             <hbox>
  43.                 <label value="&clobber.lastset;" />
  44.                 <label id="lastset" style="text-align: right;"/>
  45.             </hbox>
  46.             <hbox>
  47.                 <label value="&clobber.currset;" />
  48.                 <label id="currset" style="text-align: right;"/>
  49.             </hbox>
  50.         </vbox>
  51.         <description style="margin-bottom: 1em; font-weight: bold;">&clobber.prompt;</description>
  52.     </vbox>
  53. </dialog>
  54.